home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / gnu / cperf-21.lha / cperf-2.1 / src / listnode.c < prev    next >
C/C++ Source or Header  |  1989-11-11  |  4KB  |  112 lines

  1. /* Creates and initializes a new list node.
  2.    Copyright (C) 1989 Free Software Foundation, Inc.
  3.    written by Douglas C. Schmidt (schmidt@ics.uci.edu)
  4.  
  5. This file is part of GNU GPERF.
  6.  
  7. GNU GPERF is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU General Public License as published by
  9. the Free Software Foundation; either version 1, or (at your option)
  10. any later version.
  11.  
  12. GNU GPERF is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. GNU General Public License for more details.
  16.  
  17. You should have received a copy of the GNU General Public License
  18. along with GNU GPERF; see the file COPYING.  If not, write to
  19. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  20.  
  21. #include <stdio.h>
  22. #include "options.h"
  23. #include "listnode.h"
  24. #include "stderr.h"
  25.  
  26. /* See comments in perfect.cc. */
  27. extern int occurrences[ALPHABET_SIZE]; 
  28.  
  29. /* Sorts the key set alphabetically to speed up subsequent operations.
  30.    Uses insertion sort since the set is probably quite small. */
  31.  
  32. static void 
  33. set_sort (base, len)
  34.      char *base;
  35.      int len;
  36. {
  37.   int i, j;
  38.  
  39.   for (i = 0, j = len - 1; i < j; i++)
  40.     {
  41.       char curr, tmp;
  42.       
  43.       for (curr = i + 1, tmp = base[curr]; curr > 0 && tmp < base[curr-1]; curr--)
  44.         base[curr] = base[curr - 1];
  45.  
  46.       base[curr] = tmp;
  47.  
  48.     }
  49. }
  50.  
  51. /* Initializes a List_Node.  This requires obtaining memory for the KEY_SET
  52.    initializing them using the information stored in the
  53.    KEY_POSITIONS array in Options, and checking for simple errors.
  54.    It's important to note that KEY and REST are both pointers to
  55.    the different offsets into the same block of dynamic memory pointed to
  56.    by parameter K. The data member REST is used to store any additional fields 
  57.    of the input file (it is set to the "" string if Option[TYPE] is not enabled).
  58.    This is useful if the user wishes to incorporate a lookup structure,
  59.    rather than just an array of keys. */
  60.  
  61. LIST_NODE *
  62. make_list_node (k, len)
  63.      char *k;
  64.      int len;
  65. {
  66.     LIST_NODE *buffered_malloc ();
  67.   int char_set_size = OPTION_ENABLED (option, ALLCHARS) ? len : GET_CHARSET_SIZE (option) + 1;
  68.   LIST_NODE *temp = buffered_malloc (sizeof (LIST_NODE) + char_set_size);
  69.   char *ptr = temp->char_set;
  70.  
  71.   k[len]       = '\0';        /* Null terminate KEY to separate it from REST. */
  72.   temp->key    = k;
  73.   temp->next   = 0;
  74.   temp->index  = 0;
  75.   temp->length = len;
  76.   temp->link   = 0;
  77.   temp->rest   = OPTION_ENABLED (option, TYPE) ? k + len + 1 : "";
  78.  
  79.   if (OPTION_ENABLED (option, ALLCHARS)) /* Use all the character position in the KEY. */
  80.  
  81.     for (; *k; k++, ptr++)
  82.       ++occurrences[*ptr = *k];
  83.  
  84.   else                          /* Only use those character positions specified by the user. */
  85.     {                           
  86.       int i;
  87.  
  88.       /* Iterate thru the list of key_positions, initializing occurrences table
  89.          and temp->char_set (via char * pointer ptr). */
  90.  
  91.       for(RESET (option); (i = GET (option)) != EOS; )
  92.         {
  93.           if (i == WORD_END)    /* Special notation for last KEY position, i.e. '$'. */
  94.             *ptr = temp->key[len - 1];
  95.           else if (i <= len)    /* Within range of KEY length, so we'll keep it. */
  96.             *ptr = temp->key[i - 1];
  97.           else                  /* Out of range of KEY length, so we'll just skip it. */
  98.             continue;
  99.           ++occurrences[*ptr++];
  100.         }
  101.  
  102.       if (ptr == temp->char_set) /* Didn't get any hits, i.e., no usable positions. */
  103.         report_error ("can't hash keyword %s with chosen key positions\n%a", temp->key);
  104.     }
  105.  
  106.   *ptr = '\0';                  /* Terminate this bastard.... */
  107.   /* Sort the KEY_SET items alphabetically. */
  108.   set_sort (temp->char_set, ptr - temp->char_set); 
  109.  
  110.   return temp;
  111. }
  112.